-
Notifications
You must be signed in to change notification settings - Fork 653
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing Redis from internal lua function names and comments #1102
Conversation
…edis from internal function names. * Fixed a bug where 'server *' invocation from lua debugger was not working. * Functions in lua c files lack of documentation. Adding some documentation in this commit. * I removed Redis from function names in eval.c and script_lua.c files. I did not touch log messages in this commit. I also did not touch references to "RedisProtocol". Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com>
* Fixed comments to be 120 line length. * Aliased error handler function. * Renamed REDIS_LRAND... variable to SERVER... * I did not rename RedisProtocol as it refers to the RESP protocol. Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com>
Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## unstable #1102 +/- ##
============================================
- Coverage 70.62% 70.62% -0.01%
============================================
Files 114 114
Lines 61695 61717 +22
============================================
+ Hits 43571 43585 +14
- Misses 18124 18132 +8
|
Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com>
Fixed all problems with the build. Next build will succeed. This is ready for review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIRC, there were few tests in your previous PR to verify the availability of both the APIs.
Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com>
@hpatro yeah. scripting.tcl has this block which will replace redis with server and test the same scripts.
|
Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid force-push on Github (if possible), one needs to go through the entire diff again😄.
noted :) I keep forgetting to add signed-off-by... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
… server_api_allo_list Co-authored-by: Madelyn Olson <madelyneolson@gmail.com> Signed-off-by: Parth <661497+parthpatel@users.noreply.github.com>
Signed-off-by: Parth <661497+parthpatel@users.noreply.github.com>
…io#1102) Improved documentation and readability of lua code as well as removed references to Redis. --------- Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com> Signed-off-by: naglera <anagler123@gmail.com>
…io#1102) Improved documentation and readability of lua code as well as removed references to Redis. --------- Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com>
…io#1102) Improved documentation and readability of lua code as well as removed references to Redis. --------- Signed-off-by: Parth Patel <661497+parthpatel@users.noreply.github.com>
I couldn't figure out how to rebase on top of recent changes, so creating this new PR. This has changes to handle comments on previous PR #288.